home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc1 / instal.zip / WSLIB / MAKEFILE < prev    next >
Text File  |  1990-07-04  |  1KB  |  67 lines

  1. #
  2. ################### Makefile for Install LIB ##################
  3. #
  4.  
  5. NAME = install
  6.  
  7. #
  8. ################### These macros are for retail #################
  9. #
  10.  
  11. DEF = 
  12. CC  = cl -c -W2 -AS -Gsw -Zdp -Oas $(DEF) 
  13.  
  14. #
  15. ################### These macros are for debug ##################
  16. #
  17.  
  18. #DEF = -DDEBUG
  19. #CC  = cl -c -W2 -AS -Gsw -Zdip -Od $(DEF) 
  20.  
  21. MASM  = masm -Mx -Zi $(DEF)
  22. LIBS = slibcew libw wprintf
  23. OBJ  = gauge.obj progdde.obj copy.obj infparse.obj dos.obj
  24.  
  25. ASM = $(MASM) -DSEGNAME=$(SEG) $*.asm ;
  26.  
  27. #
  28. ################### Standard inference rules ####################
  29. #
  30.  
  31. .c.obj:
  32.         $(CC) -NT _WINSETUP $*.c
  33.  
  34. .asm.obj:
  35.     $(ASM) $*;
  36.  
  37. #
  38. ############################# Depends ###########################
  39. #
  40.  
  41. all: $(NAME).lib
  42.  
  43. copy.obj: copy.c gauge.h progdde.h ws.h wprintf.h ..\install.h  sulib.h
  44.  
  45. gauge.obj: gauge.c gauge.h ..\install.h ws.h wprintf.h
  46.  
  47. infparse.obj: infparse.c sulib.h
  48.  
  49. progdde.obj: progdde.c gauge.h progdde.h ws.h wprintf.h ..\install.h sulib.h
  50.  
  51. dos.obj: dos.asm
  52.  
  53. $(NAME).lib: $(OBJ)
  54.     del $(NAME).lib
  55.         lib $(NAME).lib +$(OBJ);
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.